home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / mscfunct / crt_scrl.c < prev    next >
C/C++ Source or Header  |  1987-05-09  |  407b  |  16 lines

  1. #include <dos.h>
  2.  
  3. void crt_scroll( top, bottom, left, right, lines )
  4.     int top, bottom, left, right, lines;
  5. {
  6.     union REGS regs;
  7.     
  8.     regs.h.ah = (lines > 0 ) ? 6 : 7;
  9.     regs.h.al = (lines > 0 ) ? lines : -lines;
  10.     regs.h.ch = top; regs.h.cl = left;
  11.     regs.h.dh = bottom; regs.h.dl = right;
  12.     regs.h.bh = 7;            /* white on black default */
  13.     
  14.     int86( 0x10, ®s, ®s );
  15. }
  16.